From 2890d1842a8538e093de3b1814ef26f308385c07 Mon Sep 17 00:00:00 2001 From: Paul Dee Date: Mon, 6 Sep 2021 17:31:51 +0200 Subject: [PATCH] luci-mod-status: Add Target Platform (e.g. ath79/ipq806x/etc) revealed under: ubus call system board board.release.target Useful reminder for what to download Signed-off-by: Paul Dee --- .../luci-static/resources/view/status/include/10_system.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js index ea8f2bb239..ae7efa3e75 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js @@ -54,6 +54,7 @@ return baseclass.extend({ _('Hostname'), boardinfo.hostname, _('Model'), boardinfo.model, _('Architecture'), boardinfo.system, + _('Target Platform'), (L.isObject(boardinfo.release) ? boardinfo.release.target : ''), _('Firmware Version'), (L.isObject(boardinfo.release) ? boardinfo.release.description + ' / ' : '') + (luciversion || ''), _('Kernel Version'), boardinfo.kernel, _('Local Time'), datestr, -- 2.30.2